home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / MATH / MTKIT2 / MTOOL.DOC < prev    next >
Text File  |  1994-05-09  |  12KB  |  328 lines

  1. TURBO TPU TOOLKIT! (TM) Kit #1 Version 2.0
  2. COPYRIGHT 1993 LONE WOLF ENTERPRISES ALL RIGHTS RESERVED
  3.  
  4. DOCUMENTATION
  5.  
  6. INTRODUCTION
  7.  
  8. TURBO TPU TOOLKIT! Kit #1 (TM) Version 2.0 is a TPU based toolkit
  9. of mathematical functions for the experienced Pascal programmer and
  10. the novice Pascal programmer alike.  TURBO TPU TOOLKIT! has easy
  11. plug in functions such as inverse trigonometric functions,
  12. hyperbolic functions, factorials, permutations and much, much more!
  13.  
  14. The TPUs are designed to provide accuracy to 19 significant
  15. figures, perfect for graduate students who need high level
  16. mathematical functions for your Pascal programs.  You programmers
  17. write the code, display any output the way YOU want it, the TPUs of
  18. the TURBO TPU TOOLKIT! Kit #1 will just do the calculations.
  19. &
  20. INTRODUCTION - cont.
  21.  
  22. The sample program KIT1DEMO.EXE provides an example of
  23. how easy it is to "plug in" a TPU for your programming needs. 
  24. A manual for the tools featured in this release and for all other
  25. tools are available for registered users.  More toolkits may be
  26. purchased separately.  Site licenses available for commercial use
  27. and for LANs.  Works with Turbo Pascal 5.5 or greater compilers. 
  28. Have fun!!
  29. &
  30. PC REQUIREMENTS
  31.  
  32. IBM compatible computer (those with DOS emulators may have a
  33. problem), MS-DOS 4.0 and up, math coproccessor.  EGA color monitor
  34. or better (CGA cards and monochrome monitors may not display the
  35. program well).  512 K RAM minimum, 70 K of disk space. 
  36. KIT1DEMO.EXE may be run on a floppy, harddrive or ramdrive. 
  37. Mtool.DOC MUST RESIDE IN THE SAME DIRECTORY AS KIT1DEMO.EXE!  If
  38. you use this program under Windows 3.x, the program will run in a
  39. window and will run full screen.  The program works under QEMM 386
  40. and PCTools Ramboost.
  41. &
  42. INSTALLATION
  43.  
  44. Turn on the computer to start your operating system.  Place
  45. the floppy disk into the disk drive.  Switch to the floppy
  46. drive by typing "A:" or "B:" at the prompt.  Type "DIR" to
  47. view the contents of the disk.  Type "INSTALL", press "ENTER" and
  48. follow the instructions.  Once the installation is complete,
  49. switch to the drive you installed the program on and then switch
  50. to the Mtool subdirectory by typing "C:" (or whatever drive you
  51. installed the program), press "ENTER", then type "CD\Mtool" and
  52. press "ENTER".  The TPU files may be moved to any directory you
  53. want.  KIT1DEMO.EXE AND Mtool.DOC MUST BE IN THE SAME DIRECTORY
  54. TO WORK PROPERLY.
  55. &
  56. OPERATION - KIT1DEMO.EXE
  57.  
  58. Type "KIT1DEMO" and press "ENTER" to start the program.  A menu
  59. will appear.  The words "TURBO TPU TOOLKIT!" (TM) should blink in
  60. red (color may vary on some monitors).  You will see the following
  61. options:
  62.  
  63.           A. Option 1 - Arc Cosine
  64.           B. Option 2 - Arc Sine
  65.           C. Option 3 - Log Base Ten
  66.           D. Option 4 - Hypotenuse
  67.           E. Option 5 - Find prime numbers
  68.           F. Option 6 - Inverse Logarithm
  69.           G. Option 7 - Tangent
  70.           H. Option 8 - Hyperbolic Cosine
  71.           I. Option 9 - Hyperbolic Sine
  72.           J. Option A - Factorial
  73.           K. Option T - Turbo Tpu Toolkit! Instructions
  74.           L. Option q - Quit the program
  75.  
  76. Press the number or letter WITHOUT PRESSING THE <ENTER> KEY!
  77. &
  78. OPERATION - cont.
  79.  
  80. A. Arc Cosine
  81.  
  82.    Computes the inverse cosine of a given radian value.  The      
  83.    function returns valid answers for radian values given between
  84.    pi and pi.
  85.  
  86. B. Arc Sine
  87.  
  88.    Computes the inverse cosine of a given radian value.  The      
  89.    function returns valid answers for radian values given between
  90.    pi and pi.
  91.  
  92. C. Log Base 10 (Common) Logarithm
  93.  
  94.    Computes the common logarithm of a given value between 0.00001 
  95.    and  450,000.  Negative numbers are not valid.
  96.  
  97. D. Hypotenuse
  98.  
  99.    Takes the input of two sides of a right triangle and computes
  100.    its hypotenuse.
  101. &
  102. OPERATION - cont.
  103.  
  104. E. Find prime numbers
  105.  
  106.      1. Single prime number
  107.  
  108.         Determines if the number of your choice is a prime number.
  109.  
  110.      2. Range of prime numbers
  111.  
  112.         Determines the number of prime numbers within the range you
  113.         specify.  Outputs the number of prime numbers found in that
  114.         range.
  115.  
  116.         Both sections handle only integer values.
  117.  
  118. F. Inverse Logarithm
  119.  
  120.    Computes the inverse logarithm of a number for any specified
  121.    base.
  122. &
  123. OPERATION - cont.
  124.  
  125. G. Tangent
  126.  
  127.    Computes the tangent of a given radian value.  The function
  128.    returns valid answers for all real numbers given.
  129.  
  130. H. Hyperbolic Cosine
  131.  
  132.    Computes the hyperbolic cosine of any given value.  The function
  133.    returns valid answers for all real numbers given.
  134.  
  135. I. Hyperbolic Sine
  136.  
  137.    Computes the hyperbolic sine of any given value.  The function 
  138.    returns valid answers for all real numbers given.
  139.  
  140. J. Factorial
  141.  
  142.    Computes the factorial of any given positive integer less than 
  143.    1700.
  144. &
  145. OPERATION - cont.
  146.  
  147. K. Turbo Tpu Toolkit! Kit #1 Instructions
  148.  
  149.    This file.
  150.  
  151. L. Quit the KIT1DEMO program
  152.  
  153.    Quit this program and return to your operating system.
  154. &
  155. INCLUDED FILES
  156.  
  157. The following files are included in TURBO TPU TOOLKIT! Kit #1:
  158.  
  159. KIT1DEMO.EXE   The TURBO TPU TOOLKIT! Kit #1 demonstration program.
  160. INSTALL.EXE    The installation program.
  161. MTOOL.DOC      Instructions and registration information.
  162. README.1ST     Instructions on installation and startup.
  163. REGISTER.DOC   Ready to print registration form.
  164. MTOOL.TPU      Toolkit TPU file.
  165.  
  166. KIT1DEMO.EXE AND MTOOL.DOC MUST BE IN THE SAME DIRECTORY TO RUN
  167. PROPERLY.  THE TPU FILES MUST RESIDE IN A DIRECTORY OR A PATH THAT
  168. YOUR PASCAL COMPILER CAN FIND THEM.
  169. &
  170. REGISTRATION
  171.  
  172. TURBO TPU TOOLKIT! (TM) Kit #1 Version 2.0 is $50.00.  This will
  173. get you the latest version of KIT1DEMO.EXE, MTOOL.TPU and a printed
  174. manual of all the functions MTOOL.TPU provides.  See the file
  175. "REGISTER.DOC" for all the items available.  Print the file
  176. "REGISTER.DOC" and fill it out to order the material you want. 
  177. Updates will be announced as soon as they are ready.
  178. &
  179. REGISTRATION - cont.
  180.  
  181. The Installation Source with VERY well commented source code is
  182. $100.
  183.  
  184. Please include $10 for shipping/handling along with the payment
  185. for whatever items you order.  Outside the continental United
  186. States please include $15 for shipping/handling.  (If source code
  187. is ordered, add $5 shipping/handling)
  188.  
  189. SHAREWARE DEALERS - PLEASE REGISTER SO I CAN KEEP YOU UP TO DATE!
  190. &
  191. REFERENCES
  192.  
  193. 1. Handbook of Mathematical Functions With Formulas, Graphs and   
  194.    Mathematical Tables - U.S. Department of Commerce, Tenth       
  195.    Printing, December 1972.
  196.  
  197. 2. Perry's Chemical Engineering Handbook 6th edition.
  198.  
  199. 3. Elementary Numerical Analysis.
  200.  
  201. 4. The Random House College Dictionary revised edition.
  202. &
  203. DEFINITION OF SHAREWARE - (YES! It really works)
  204.  
  205.  
  206.  
  207.               ┌─────────┐
  208.         ┌─────┴───┐     │              (R)
  209.       ──│         │o    │──────────────────
  210.         │   ┌─────┴╨──┐ │  Association of
  211.         │   │         │─┘  Shareware
  212.         └───│    o    │    Professionals
  213.       ──────│    ║    │────────────────────
  214.             └────╨────┘    MEMBER
  215.  
  216. Shareware distribution gives users a chance to try software
  217. before buying it. If you try a Shareware program and continue
  218. using it, you are expected to register. Individual programs
  219. differ on details -- some request registration while others
  220. require it, some specify a maximum trial period. With
  221. registration, you get anything from the simple right to continue
  222. using the software to an updated program with printed manual.
  223. &
  224. DEFINITION OF SHAREWARE - cont.
  225.  
  226. Copyright laws apply to both Shareware and commercial software,
  227. and the copyright holder retains all rights, with a few specific
  228. exceptions as stated below. Shareware authors are accomplished
  229. programmers, just like commercial authors, and the programs are
  230. of comparable quality. (In both cases, there are good programs
  231. and bad ones!) The main difference is in the method of
  232. distribution. The author specifically grants the right to copy
  233. and distribute the software, either to all and sundry or to a
  234. specific group. For example, some authors require written
  235. permission before a commercial disk vendor may copy their
  236. Shareware.
  237. &
  238. DEFINITION OF SHAREWARE - cont.
  239.  
  240. Shareware is a distribution method, not a type of software. You
  241. should find software that suits your needs and pocketbook,
  242. whether it's commercial or Shareware. The Shareware system makes
  243. fitting your needs easier, because you can try before you buy.
  244. And because the overhead is low, prices are low also. Shareware
  245. has the ultimate money-back guarantee -- if you don't use the
  246. product, you don't pay for it.
  247. &
  248. DEFINITION OF SHAREWARE - cont.
  249.  
  250. TURBO TPU TOOLKIT! Kit #1 is a "shareware program" and is provided
  251. at no charge to the user for evaluation.  Feel free to share it
  252. with your friends, but please do not give it away altered or as
  253. part of another system.  The essence of "user-supported" software
  254. is to provide personal computer users with quality software without
  255. high prices, and yet to provide incentive for programmers to
  256. continue to develop new products.  If you find this program
  257. useful and find that you are using TURBO TPU TOOLKIT! Kit #1 and
  258. continue to use TURBO TPU TOOLKIT! Kit #1 after a reasonable trial
  259. period, you must make a registration payment of $50.00 to LONE WOLF
  260. ENTERPRISES.  The $50.00 registration fee will license one copy for
  261. use on any one computer at any one time.  You must treat this
  262. software just like a book.  An example is that this software may be
  263. used by any number of people and may be freely moved from one
  264. computer location to another, so long as there is no possibility of
  265. it being used at one location while it's being used at another.
  266. Just as a book cannot be read by two different persons at the
  267. same time.
  268. &
  269. DEFINITION OF SHAREWARE - cont.
  270.  
  271. Commercial users of TURBO TPU TOOLKIT! Kit #1 must register and pay
  272. for their copies of TURBO TPU TOOLKIT! Kit #1 within 30 days of
  273. first use or their license is withdrawn.  Site-License arrangements
  274. may be made by contacting LONE WOLF ENTERPRISES.
  275.  
  276. Anyone distributing TURBO TPU TOOLKIT! Kit #1 for any kind of
  277. remuneration must first contact LONE WOLF ENTERPRISES at the
  278. address below for authorization.  This authorization will be
  279. automatically granted to distributors recognized by the (ASP) as
  280. adhering to its guidelines for shareware distributors, and such
  281. distributors may begin offering TURBO TPU TOOLKIT! Kit #1
  282. immediately (However LONE WOLF ENTERPRISES must still be advised so
  283. that the distributor can be kept up-to-date with the latest version
  284. of TURBO TPU TOOLKIT! Kit #1.).
  285.  
  286. You are encouraged to pass a copy of TURBO TPU TOOLKIT! Kit #1
  287. along to your friends for evaluation.  Please encourage them to
  288. register their copy if they find that they can use it.  All
  289. registered users will receive a copy of the latest version of the
  290. TURBO TPU TOOLKIT! Kit #1 system.
  291. &
  292. DISCLAIMER - AGREEMENT
  293.  
  294. Users of TURBO TPU TOOLKIT! Kit #1 must accept this disclaimer of
  295. warranty: "TURBO TPU TOOLKIT!" Kit #1 is supplied as is.  The
  296. author disclaims all warranties, expressed or implied, including,
  297. without limitation, the warranties of merchantability and of
  298. fitness for any purpose. The author assumes no liability for
  299. damages, direct or consequential, which may result from the use of
  300. TURBO TPU TOOLKIT! Kit #1.
  301. &
  302. SOFTWARE SUPPORT
  303.  
  304. All versions of TURBO TPU TOOLKIT! Kit #1 will have guaranteed
  305. support for six (6) months from the registration date (this date
  306. will be listed on your manual).  You may contact me at your choice
  307. of the following:
  308.  
  309.      LONE WOLF ENTERPRISES
  310.      1507 E. 53rd Street
  311.      Chicago, IL  60615
  312.      (312) 734-4549
  313.      Compuserve - 73353,121
  314.  
  315. &
  316. OMBUDSMAN STATEMENT
  317.  
  318. Mr. J. A. Jackson is a member of the Association of Shareware
  319. Professionals (ASP).  ASP wants to make sure that the shareware
  320. principle works for you. If you are unable to resolve a shareware-
  321. related problem with an ASP member by contacting the member
  322. directly, ASP may be able to help. The ASP Ombudsman can help you
  323. resolve a dispute or problem with an ASP member, but does not
  324. provide technical support for members' products.  Please write to
  325. the ASP Ombudsman at 545 Grover Road, Muskegon, MI 49442-9427 USA,
  326. FAX 616-788-2765 or send a CompuServe message via CompuServe
  327. Mail to ASP Ombudsman 70007,3536.
  328. &